home *** CD-ROM | disk | FTP | other *** search
/ Clickx 115 / Clickx 115.iso / software / tools / windows / tails-i386-0.16.iso / live / filesystem.squashfs / var / lib / dpkg / info / libopenraw1.postinst < prev    next >
Encoding:
Text File  |  2010-08-18  |  387 b   |  30 lines

  1. #!/bin/sh
  2. # postinst script for libopenraw
  3.  
  4. set -e
  5.  
  6. case "$1" in
  7.     configure)
  8.         ldconfig
  9.     ;;
  10.  
  11.     abort-upgrade|abort-remove|abort-deconfigure)
  12.     ;;
  13.  
  14.     *)
  15.         echo "postinst called with unknown argument \`$1'" >&2
  16.         exit 1
  17.     ;;
  18. esac
  19.  
  20. # Automatically added by dh_makeshlibs
  21. if [ "$1" = "configure" ]; then
  22.     ldconfig
  23. fi
  24. # End automatically added section
  25.  
  26.  
  27. exit 0
  28.  
  29.  
  30.